/*
:root{
    --primary-color:#061A30;
    --primary-dark:#FFB703;
    --white:#ffffff;
}
*/
body{  background:var(--primary-dark);
}


/* Container */
.sw-hc-container{
    background:var(--primary-dark);
    color:var(--white);
    overflow:hidden;
    position:relative;
}

/* Background Glow */
.sw-hc-container::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,183,3,.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
    filter:blur(100px);
    z-index:0;
}

.sw-hc-container *{
    box-sizing:border-box;
    position:relative;
    z-index:1;
}

/* Hero Section */
.sw-hc-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:100px 10%;
    flex-wrap:wrap;
}

/* Left Content */
.sw-hc-content{
    max-width:600px;
    animation:sw-hc-fadeUp .8s ease forwards;
}

.sw-hc-badge{
    display:inline-block;
    background:var(--accent-orange);
    color:#000;
    padding:10px 18px;
    border-radius:50px;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:20px;
    animation:sw-hc-slideRight 1s ease;
}

.sw-hc-title{
    font-size:clamp(2.5rem,5vw,4.5rem);
    line-height:1.1;
    margin:0 0 20px;
    font-weight:800;
}

.sw-hc-highlight{
    color:var(--accent-orange);
}

.sw-hc-desc{
    font-size:1.05rem;
    line-height:1.8;
    opacity:.9;
    margin-bottom:35px;
}

/* Buttons */
.sw-hc-btn-group{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.sw-hc-btn-primary,
.sw-hc-btn-secondary{
    padding:15px 30px;
    border-radius:50px;
    cursor:pointer;
    font-weight:700;
    transition:.35s;
    font-size:15px;
}
.sw-hc-btn-primary a{
text-decoration: none;
color: white;
}
.sw-hc-btn-secondary a{
text-decoration: none;
color: var(--accent-orange);
}

.sw-hc-btn-primary {
    border:none;
    background:var(--accent-orange);
    color:#000;
}

.sw-hc-btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,183,3,.4);
}

.sw-hc-btn-secondary{
    background:transparent;
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
}

.sw-hc-btn-secondary:hover{
    background:#fff;
    color:#061A30;
    transform:translateY(-4px);
}

/* Image Section */
.sw-hc-image-wrap{
    animation:sw-hc-fadeIn 1.2s ease;
}

.sw-hc-image{
    width:380px;
    max-width:100%;
    border-radius:24px;
    border:3px solid var(--accent-orange);
    box-shadow:0 25px 50px rgba(0,0,0,.35);
    animation:sw-hc-float 4s ease-in-out infinite;
    transition:.4s;
}

.sw-hc-image:hover{
    transform:scale(1.05);
}

/* Stats */
.sw-hc-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:70px 10%;
    border-top:1px solid rgba(255,255,255,.08);
}

.sw-hc-stat{
    text-align:center;
    animation:sw-hc-fadeUp 1s ease;
}

.sw-hc-stat h3{
    color:var(--accent-orange);
    font-size:3rem;
    margin:0;
}

.sw-hc-stat p{
    margin-top:10px;
    opacity:.8;
    letter-spacing:1px;
}

/* Animations */
@keyframes sw-hc-fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes sw-hc-slideRight{
    from{
        opacity:0;
        transform:translateX(-30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes sw-hc-fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@keyframes sw-hc-float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* Responsive */
@media(max-width:992px){

    .sw-hc-hero{
        text-align:center;
        justify-content:center;
    }

    .sw-hc-btn-group{
        justify-content:center;
    }

    .sw-hc-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .sw-hc-hero{
        padding:70px 25px;
    }

    .sw-hc-stats{
        grid-template-columns:1fr;
        padding:50px 25px;
    }

    .sw-hc-title{
        font-size:2.5rem;
    }
}



  .btn-about {
    background: var(--five-color);
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 15px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }

    .btn-about:hover {
      background: var(--two-color);
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 86, 179, 0.4);
    }
  
    #rotating-text {
        transition: opacity 0.5s ease-in-out;
    }